Resolving Merge Conflicts with Binary Files: A Step-by-Step Command Line Guide
The problem
During a git merge or rebase, you see the following merge conflict message:
During a git merge or rebase, you see the following merge conflict message:
A while back I wrote about managing local git branches with git rebase and I mentioned that I always submit my code changes with one commit only. No matter how many commits I make during my development process in my local branch when I prepare my code for code review and push it to remote, I squash all commits into one single commit, with one single commit message using git rebase.
Existem algumas maneiras diferentes de desfazer as coisas no git, mas para o propósito deste post vamos considerar o seguinte cenário:
There are a few different ways to undo things in git but for the purpose of this post we will stick with the following scenario:
git
is a very useful tool for software development and you only need to know a few commands to get most of the job done. However, you can be a lot more productive if you go beyond the basics.